Author |
Thread Statistics | Show CCP posts - 1 post(s) |

The Chef
|
Posted - 2005.01.02 12:55:00 -
[1]
Edited by: The Chef on 01/02/2005 20:36:58 Edited by: The Chef on 02/01/2005 13:11:52 Edited by: The Chef on 02/01/2005 13:09:14 I am pleased to announce the launch of a free open-source kill mail parser called "EVEkill". At the moment, it is in an early stage of development. Its features are basic, but I have high hopes for the future development of it.
The homepage can be found at http://sourceforge.net/projects/evekill/
The public demo can be found at http://evekill.sourceforge.net/demo/index.php The admin control page is not accessible at this time.
Anyone may use this program for any purpose. You may alter it as you see fit, but if you re-distribute it you have to use the same license (GNU General Public License).
I welcome all comments/feedback/ideas via the homepage. Any bugs should also be posted using the bug reporting option on the homepage.
EVEkill is writen in PHP, and has been designed to use a MySQL database. It can be intergrated with most existing forum software, although the distribution only comes with phpBB 2.0, phpNuke 7.x and Invision Power Board 1.3 support. If you use a different piece of software, you would need to create your own auth module.
- PHP 4.1 or higher (Untested on PHP 5)
- MySQL 4.0 or 3.23
- A webserver
EDIT: Forgot to post requirements! ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.02 13:14:00 -
[2]
Originally by: Therax Edited by: Therax on 02/01/2005 13:12:21 nice :) would also be nice if the topic had a title
-nm you edited the title as soon as I posted ;)
Yes... Apparently ctrl+X is cut not copy  ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.02 19:04:00 -
[3]
Edited by: The Chef on 02/01/2005 19:13:14
Originally by: Eugene Spencer boooo, i get an error. I think its a bug...
CRITICAL ERROR: Your version of PHP [] is too old to run this program. 4.1.0 is the minimum requirement
but i'm running PHP Version 4.1.2. Am i doing something wrong?
phpinfo here...
Whoops my bad! It should read "Version 4.2.0" or higher minimum. The main reason for this is so that register_globals is off by default. You can disable it by:
Find line 665 in install.php. it will look like this if( version_compare("4.2.0", phpversion() ) < 0 )
Replace that line with this if( true )
This will disable version checking. I haven't designed or tested the script for anything less than 4.2, but I see no reason why it should not/would not work. Let me know how it goes!
EDIT: Or alternatively, redownload the package from sourceforge, because I have just fixed the install.php file (Touch Wood)
Originally by: Ray McCormack I've only got it on localhost. My web provider still hasn't thought to upgrade for 4.0.2, which I'm a bit ****ed off about.
Sadly, I make use of php features that were put in to php 4.1, so there is no way for you to easily get the script up and running. If you know what you are doing, then the problem is that I use the $_POST and $_SESSION variables which don't exist in php 4.0 ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.02 19:40:00 -
[4]
Originally by: Niaski Zalani Hrm, i'm getting a whole host of errors now...I cant seem to select IPB, phpNuke, or phpBB withough having the script exlode with errors during later steps of the autoinstaller. I can run the script fine if i select the "No Authorisation" in step 1...but then can't add killmails, etc.
Can you please send me the error messages you get, what stage it happens at, and what forum stuff you are using? Just like EVE, EVEkill will probably be plagued with bugs for the next day or so  ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.02 19:49:00 -
[5]
Originally by: Ray McCormack
Originally by: The Chef Sadly, I make use of php features that were put in to php 4.1, so there is no way for you to easily get the script up and running. If you know what you are doing, then the problem is that I use the $_POST and $_SESSION variables which don't exist in php 4.0
The simplest way would be to use $var instead of $_POST['var'], but that would mean editing the whole script. I'll just hold out and keep bugging my host admin to upgrade.
Using $var instead of $_POST['var'] is a security flaw, because it could be from a cookie, post data, get data, session data etc etc. However, it might be possible/easy to copy the PHP 4 style global variables into the PHP 4.1 style global variables... but its not something I would plan on doing soon! (Heading back to uni tomorrow, packing like mad at the moment) ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.02 20:30:00 -
[6]
Originally by: Niaski Zalani
Ok, using the IPB auth thing in step 1 i get:
Warning: installgetsettings(): Unable to access /home/virtual/site2/fst/var/www/html/meltedpixel.net/evekill/conf_global.php in /home/virtual/site2/fst/var/www/html/meltedpixel.net/evekill/auth/ipb1_3.php on line 131
The path you have specified as your parent root does not appear to be correct.
/home/virtual/site2/fst/var/www/html/meltedpixel.net/evekill/conf_global.php I would suggest removing the /evekill/ from the end of your PARENT home directory.
As for the MySQL error, I think you haven't correctly set the parent table prefix. Its look for a table (called groups) but it can't find it.
The warnings are bugs on my part, as you should get some proper informative error messages instead! I hope this helps. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.02 20:49:00 -
[7]
Step 2:
Main site folder address - The folder in which your forum software (IPB) is. You need to change this to make the error go away
Main site website address - The URL for your forums.
EVEkill folder address - Where EVEkill is.
The "Settings Okay" image will only test that the EVEkill website address is okay.
This would be easier to do via MSN, you can find my contact details here: http://sourceforge.net/forum/forum.php?thread_id=1203739&forum_id=419938
I will have to start packing my PC in about an hour, and it won't be until Monday evening that I'll get it back up ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.02 21:01:00 -
[8]
Originally by: Niaski Zalani Oooh! I got it. I didn't know u were assuming there was a forum installation already there...I just thought u were trying to use those pre-built auth systems in your engine..nvm! :)
Yes, that could well be the slight problem 
Its basically an add-on to existing forum software. You can use the same name/password as the forums without issue. I am planning to build a stand-alone authorisation module so that you can install EVEkill without installing a piece of forum software, but that is still a soonÖish dream ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.03 16:50:00 -
[9]
Originally by: Hakera I found a bug on the second screen after scanning a mail in, if you select 'admin will add manually' you get errors.
& you mispelt vagabond in the ships table hence it was not recognised at first.
Thanks for reporting these bugs, I will get a fix out tonight.
Originally by: Hakera If i could ask for a top priority feature it would be to enable it to be viewed by anyone as an option.
Technically possible... If you make everyone a member of a single group and give that group "Can View" permissions then they will all be able to view everything (Although not upload). However, this can be a bit difficult to do if you aren't using phpBB. I will add a default group in the next version so you can easily give everyone "Can View" permissions. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.03 16:54:00 -
[10]
Originally by: Hakera The statistics side is good, I was thinking of linking in some icons so that via the account info it can pick up profile data (talking phpnuke here) and maybe under the Your Account info register all your kills eg Laid the Final Blow & Participated catagories and so on. But that is more a full integrated of the tool into nuke as a module.
A function interface file is something I plan on creating (Eg: EVEKILL_HowManyKills( $UserID ) returns the number of kills made by that person). As you can probably imagine though, I have a lot of work planned ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.03 18:25:00 -
[11]
Edited by: The Chef on 03/01/2005 18:26:51 New version released. To update, just download the new .zip file, and then upload its contents over your existing files. Once that is done, to update your ship database:
1) Login to your forums 2) Go to the EVEkill website, and type "?Uships=NOW" onto the end of the URL (You must have "Can Admin" permission) 3) You should see the message "SHIPS: Updated"
If you do not see the message in stage 3, something went wrong. If this happens, you can manually update your database by finding the ships table, finding the entry that has a name of "Vegabond", and replace this with "Vagabond".
Oh, and don't overwrite the config.php file or you will have to re-run the installer!
Bug Fixes: - Removed "Store kill for admin" as it didn't work and it represented a major security flaw. - Fixed typo in ship database (Vagabond was typoed as Vegabond) ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.05 17:56:00 -
[12]
Originally by: Ray McCormack It is running on PHP 5.03 and MySQL 4.1.8-nt-log
Well thats quite impressive, I didn't design the database module to work with MySQL 4.1 
Still, good to know. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.12 01:57:00 -
[13]
Surprised at how fast this topic got burried, but anyway:
I am please to announce a new version of EVEkill, version 0.1.4. I recommend all users upgrade as soon as possible. To do this, download the new .zip file from sourceforge and overwrite all your existing files. Then run the upgrade.php file to update your database.
Any problems should be reported on the sourceforge website (http://sourceforge.net/projects/evekill/)
Change Log - Interface overhall by Tripdiesel ---- Added ship pictures ---- Added link to EVE-I information on ship ---- Seperated stats into Weekly and Total - Added EVE mail style kill viewer - Added two new groups ---- All non-logged in users: Allows anyone NOT logged in to use the kill mail parser (eg: guests) ---- All logged in users: Allows easy control of all users. Anyone who can login will be given these permissions. Use with caution, as on some forum setups you can create an account and use it without admin validation - Added session ID passing support. Should be turned on only if you have problems. - Added loss table to index page (Below kill table) - Fixed Bug: Stored weapons were missing the first letter. Updater will reset all stored weapon data to "Unknown". - Fixed Bug: Users who were not logged in were redirected to login page. This was preventing guests from using the kill parser. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.12 14:04:00 -
[14]
Originally by: Hakera
Originally by: The Chef
- Fixed Bug: Stored weapons were missing the first letter. Updater will reset all stored weapon data to "Unknown".
hrmmm - I get that after I updated (original weapon still there and missing first letter) update ran fine.
Kudos - looks much nicer now. Thanks for your efforts!
UPDATE `MYPREFIX_attackers` SET `weaponType` = 'Unknown';
Should reset all your weapon types back to "Unknown". I have no idea why it did not work in the first place, I can not think of any reason why it would not. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.13 12:18:00 -
[15]
Originally by: Hakera I would ask for one feature, support for npc's in killmails, the parser does not like them because of the missing info.
How very odd. AFAIK, NPC's should be detected without any problems! Would you be so kind as to EVEmail me a copy of the kill mail so I can find out what the problem is?
Thank you for your help ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.13 15:24:00 -
[16]
Originally by: Raaki This can be fixed by setting the following variable in the php.ini file register_globals on
It is off for a very good reason though. Having it on is a security risk. By using $_POST, I know that the variable CAN ONLY come from post data. Additionally, with register_globals on, anyone can set any variable with a default value.
At first, I made EVEkill refuse to install if register globals was on. However, I decided that was a little too extreme, and set it so that it warns you if it is on. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.13 21:31:00 -
[17]
Originally by: Avon I still can't get this to install.
It hates me.
Informative! If you post a little bit more information (Error messages, what is going wrong, what database/forum you are using, what stage it is going wrong at) I imagine I will be able to solve your problem quite quickly. If it is a bug, then I can fix it. If it is just an error in input, then I can help you make sure you put in the right values.
I'm here to help. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.14 14:23:00 -
[18]
Edited by: The Chef on 14/01/2005 14:27:34 Edited by: The Chef on 14/01/2005 14:27:03 ALL settings are in the config.php file or in the config table in the database. There is nothing else that you can/should change in any other file. I believe your problem is that your EVEkill root directory is not correctly set.
In the config.php file
Find $INT_Config->KillRoot =
That controls the include path for ALL files. You simply need to change this variable to point to your EVEkill folder. The path MUST end in a /
Example: EVEkill is in E:/webpages/EVEkill/ $INT_Config->KillRoot = 'E:/webpages/EVEkill/';
Then, find
include( 'somepath/auth/no_auth.php' ); include( 'somepath/database/mysql4.php' );
Replace somepath with the correct path for your EVEkill installation. Alternatively, replace the two lines above with
include( $INT_Config->KillRoot . 'auth/no_auth.php' ); include( $INT_Config->KillRoot . 'database/mysql4.php' );
This just leaves the question of what went wrong in the first place! If the config.php file was empty, then that suggests the installation failed. However, it is not supposed to continue the install if it can not write to the config.php file. Very odd indeed.
EDIT: EVEkill is tested on three different webservers before release (One windows, One Fedora Core 3, One other Linux), and all three installs use different paths/settings. There are no hardcoded paths anywhere but the config.php file. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.14 14:31:00 -
[19]
Originally by: Vice Cicero Can someone explain how this works and where the input is comming from?
Basically, you copy and paste the kill mails you recieve in EVE into a webpage. The webpage then scans your kill mail, breaks it up into the different parts, and stores the data in a database. This data is then used to make statistics and so on.
At this time, there is no way to get/validate kill mails with EVE online. I do not imagine there ever will be, but then again you never know. If someone doesn't upload a kill mail, then EVEkill will not know about it ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.14 14:37:00 -
[20]
Originally by: Avon Edited by: Avon on 14/01/2005 14:35:26 Are those relative or absolute? Do I have to explicity state the directory structure of the server or just point the folder via the URL?
Warning: main(): Failed opening '/auth/phpBB2_0.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/www/powergam/evekill/config.php on line 17
Where is it getting the directory structure? I am pointing at http://www.powergamer.co.uk/evekill/ in the config file.
You need to use the folder path, not the web path. Explicit is generally safer than relative, but there is no reason why you could not use either. The include_path is a php.ini set variable, and is nothing to do with EVEkill. It should also be ignored by EVEkill. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.14 14:44:00 -
[21]
Originally by: Hakera There is one change I would prefer - am wanting to make on our version, you emphasise the race of the ship in the tables, I would prefer and I think many others to rather have ship class instead.
From this, the statistics screen summarises the ships of each class killed in the last week or in overall stats, all to date.
Also I want to ignore pod kills in the statistics eventually.
Ignoring pod kills is fairly easy to do. It is also on my list of things to do.
Stats per ship class is another planned feature, but soonÖ is probably the best way to describe the timescale currently planned. I have exams to revise for, so EVEkill will be on hold until January 20th. The only thing I am trying to get done before then is a planned feature list :-) ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.14 14:47:00 -
[22]
Having looked at your install error messages, I think the correct path to set is
'/home/www/powergam/evekill/'
I hope this helps ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.14 15:18:00 -
[23]
Originally by: Avon The folder path is the same as the web path.
I am guessing my web host has a folder structure which I can not see, I'll have to get on to them.
Web path: http://www.myhost.com/folder/subfolder Folder path: /somin/sominelse/folder/subfolder
Your PHP messages give the path as being "/home/www/powergam/evekill/". This is your EVEkill root path. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.14 18:18:00 -
[24]
Tables are a powerful tool though, as well as normally looking the same on every browser. However, EVEkill will (next release) support templates, so you can if you desire make a template that is table free.
An XML style output should be fairly easy to make, although I'm not quite sure why you would want it?
====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.14 23:26:00 -
[25]
The EVEkill feature plan can be viewed at http://evekill.sourceforge.net/
This roadmap is NOT final. Features can be added, changed or even removed depending on how development goes and the feedback I recieve from the community. If there is a feature you think should be added/changed/moved to an eariler version, please submit a feature request on the EVEkill website (http://sourceforge.net/projects/evekill/) ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.20 12:53:00 -
[26]
Firstly, thanks to EVE-I for the mention in their news! I really appreciate it! 
Secondly, I have just finished my last exam so coding is now off-hold again. I hope to get the next version out somewhere around the end of the month.
Originally by: Jeebs lookin good... i wonder if one site will rise above the rest as a "killmail authority" of some sort...
All kill parser's store the same data and so can make the same stats. To my knowledge, this is the first and only open-source kill mail parser that exists at the moment, and so it will probably become the most widely used. However, if it will ever be the "best" is for the users to decide. The BoB kill parser is quite nice, and I have seen a lot of other good ones out there. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.20 13:07:00 -
[27]
Originally by: Mitchman Being able to add a comment when adding a mail is desperately needed. We always add comments to our kills 
Someone else suggested that, but I wasn't too sure if it would be used. Would that be just a comment (eg: "Ganked this one while he was AFK :D") or would you be more interested in also being able to reply to the comments (eg: A forum thread style thing)? ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.21 22:11:00 -
[28]
Wow, a lot of posts. Okay, here are some replies...
Comments will be added in either v 0.1.6 or 0.1.7. They will not support BBcode, and for security reasons html/php code will also be removed.
I have never heard of pnphpbb2 before, and I suspect that it will require a new auth module for it to work properly. Your best bet is to find someone who knows how to code PHP and get them to look at the no_auth.php file. It contains the basic class required to make a auth module. You simply need to make the existing functions do the right things.
Help wise: - New templates/themes would be nice. I am currently coding the template support. And my graphic skills are the sux0r  - New auth modules - New database modules Someone to help code EVEkill would be nice, although organising it would be a nightmare (CVS doesn't seem to like me atm!). They would need to be highly confident in PHP/MySQL.
Domex I replied to your problem on the sourceforge website, so look there for the solution (I assume it was you who made the post there, as it has the same path)
Caelandra, Integramod won't work with the phpBB 2 auth module sadly. Someone (possibly me, but not within the next 9 days) will need to create a new auth module specifically for Integramod.
Originally by: Falhofnir The other needed feature for your already nice kill list is capsule (& noobships) filtering/linking to corresponding ship kills (with possibly an indicator of the pod being killed or not when the capsule kills are actually filtered).
I agree with capsule filtering, and will be making this available (and the default setting). An icon or similar will be used to show if the pod was killed or not. I have not yet decided which version to add this in to, but I imagine it will be 0.1.7
There we go, sorry if I missed anyone! ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.22 21:44:00 -
[29]
Originally by: Stars End I did receive an error about the corp not existing when I tried to submit a killmail where I was destroyed by CONCORD.
Please email a copy of the kill mail to [email protected] so that I can fix this bug. I think I know the cause, but I have never seen a Concord kill mail before so I need to check to make certain. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.22 23:31:00 -
[30]
Thanks.
This bug will be fixed in V 0.1.5, which is being aimed for a January 30th release date. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.23 22:02:00 -
[31]
Edited by: The Chef on 23/01/2005 22:03:23
Originally by: bigsteve Edited by: bigsteve on 23/01/2005 20:50:43 when continuing to Step 4 of the installation i get this error.
Quote:
Fatal error: Call to undefined function: ctype_digit() in d:\stormhawks\evekills\database\mysql4.php on line 26
Your version of PHP has been built without ctype support - which is on by default in PHP 4.2 onwards. You can try steps 2 or 3 below.
Quote:
On PHP versions before 4.2, ctype is an optional php feature that has to be turned on by the website admin. There are a number of possible solutions to your problem: 1) Update PHP to version 4.2 or later 2) Add the ctype library to your PHP installation 3) Find ctype_digit and replace it with is_numerical For EVEkill 0.1.5 I will try and remove the use of ctype functions. I am aiming to get this release done for the end of January. You can either wait or you can try one of the three solutions above. I hope this helps. Let me know how it goes.
====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.01.28 20:21:00 -
[32]
EVEkill v0.1.5 is currently being tested to make sure all the bugs are removed.
However, there is a problem. EVEkill v0.1.5 WILL NOT have a working search page. The search page will be back (and better than before) for v0.1.6. Unless you really need/use your search page, I still recommend upgrading to v0.1.5 when it is released. At the end of the day, it is your choice.
If you do not upgrade to v0.1.5, you will need to update your ships database to include the new elite industrial ships. The update file to do this can be downloaded from the EVEkill sourceforge website.
As per usual, any problems will be resolved as quickly and easily as possible by contacting me, either via these forums or preferably via the EVEkill sourceforge website ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.02.01 20:36:00 -
[33]
EVEkill v0.1.5 is now available for public download and installation. As usual, I suggest you back up your config.php file and your database BEFORE you attempt to upgrade. Thanks go to shintoko (For a new auth module) and Harkov (For the in-game template). As announced eariler, v0.1.5 does not have a search page. You can view a working demo of v0.1.5 at http://evekill.sourceforge.net/demo/index.php - This also now works in you EVE in-game browser (Although tables are quite slow to load sadly).
Please report any bugs as you find them, so that they can be quickly squished and a fix released! ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.02.02 01:45:00 -
[34]
Well spotted :-)
I'll get this fixed and put out as 0.1.5.B or similar, along with a load of new auth modules (hopefully). ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.02.05 23:35:00 -
[35]
For the attention of ALL EVEkill users:
I failed to spot the addition of the new Amarr Industrial, the Sigil. To fix this problem, all users of EVEkill (all versions) need to download the Ship Database Update. This will add the Sigil to your database.
I am also proud to announce the addition of THREE new authorisation modules, as requested by the community. vBulletin (Requires legal registered version of vBulletin) Integramod Mambo 4.5
The modules have not been tested on any large-scale installations at this time, so a few obscure bugs might exist. I will fix this (if they exist) when they are reported.
My next target is EVEkill v0.1.6, including the return of the search page. When will this will be done? SoonÖ (Couple of weeks? Depends on uni work really) ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.02.13 13:00:00 -
[36]
Only users who are part of a coporation/alliance that has the "Our Member" standing will be shown in the stats rankings. The "Our Member" standing also controls who/what appears in the losses table, so it is quite important to keep it up to date 
In retrospect, I should probably have mentioned the whole standing thing eariler.... ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.02.13 13:48:00 -
[37]
Originally by: KrogothZero Does 1.5 support ships lost to npcs ?
Yes. Well, thats the theory anyway
The only current little bug is PoS kills will show up as NPC kills ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.02.19 19:24:00 -
[38]
All users of EVEkill should download and apply the new Ships Database (named EVE 3211). This database update includes the new faction ships.
EVEkill 0.1.4 or before: Download EVEkill_v014_ships_update.zip and follow the instructions in the readme file.
EVEkill 0.1.5 Download EVEkill_v015_ships_update.zip and follow the instructions in the readme file.
Downloading the wrong update file will cause (fixable) problems.
== EVEkill 0.1.6 News == Just in case anyone was thinking I've been slacking off recently... well, you're right. Work started on 0.1.6 today (honest), but I do not currently have an ETA for release. The Uni holidays are over and now I have a lot of openGL/directX stuff to learn, so my time will be tight. Not to mention the colapse of JQA which has meant moving a load of stuff back to empire.
Anyway, just an update to let you know I haven't died or given up ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.02.27 12:38:00 -
[39]
Originally by: Dark Big this program haits me!!! it giving me hell. :/
I'm sorry to hear that. Please feel free to stop by at our website and to post up a support request. Chances are that I will be able to help you fix your problem. ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.05.25 15:18:00 -
[40]
Edited by: The Chef on 25/05/2005 18:22:46 Perhaps a bit overdue, but better late than never 
I have updated the ships.csv file to include Stealth Bombers. You can download it here. As always, anything missing or any bugs should be reported on our website
Development on EVEkill v0.1.6 has now resumed (Full announcement here)
EDIT: Development stats can be viewen here (lines of code, lastest development log messages, etc) ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.05.27 19:04:00 -
[41]
EVEkill v0.1.5.C released
I know it's not what you've been waiting for, but it's better than nothing. EVEkill v0.1.5.C is a minor update to allow EVEkill to properly handle the new alliance field on kill mails. I have also added in a new theme made by LJack2k. You can add it to your EVEkill from the admin control panel.
v0.1.6 is progressing nicely, although at this stage I have no idea when it will be ready for release.
http://sourceforge.net/projects/evekill/ ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.07.06 13:55:00 -
[42]
Ship Database Updated
A new update has been released containing the new Dreadnoughts and Freighters.
Download it here
v0.1.6 is progressing very slowly and I have no excuses. Just a lack of motivation coding wise. Coders Block if you will.  ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2005.07.07 15:18:00 -
[43]
Originally by: Deep Throat ok can u explain this to me like im a 4 year old? -is this similiar to eve-kills?
It is similar in that both EVEkill and eve-kills take your kill mail messages and store them. EVEkill is designed for individual corporations and/or alliances, where as eve-kills was designed to be one big central database
Originally by: Deep Throat -do i download the files and then what?
You need a web host which supports PHP 4.1 or greater and a MySQL database. You upload the files to your web host and run install.php to install EVEkill. You will then have a working EVEkill instatllation. EVEkill has been designed to work best alongside existing software such as phpBB
Originally by: Deep Throat -i tried the ingame url u mentioned but nothing happened -this site u specify isnt really a killboard, is there one somewhere?
You can view the demo here. It will work both in-game and out of game.
Originally by: Deepeh I might be able to offer my PHP-development services to you... if you have a TODO file somewhere (and a CVS server? I have an sf.net account) I might be able to cut you some slack. :)
If you are interested, drop me an email at [email protected] with your sourceforge username and a little bit about your past coding experiance and we will sort something out.  ====================================
EVEkill Visit our homepage |

The Chef
|
Posted - 2006.04.24 11:38:00 -
[44]
EVEkill is an open source kill mail parser. Basically, you take the eve kill mails you get sent in game for killing another player (or being killed) and then post them into this piece of software. It stores the kill mail, and creates a few stats based on all the kill mails that have been added.
I notice a few people are having issues with the in-game browser at the moment, so it isn't just you few posting in here. Sadly I don't have any free time at the moment (not even to play EVE properly ) so I can't look into it. However, I do plan to resume work on EVEkill soonÖ  ==================================== EVEkill (Founder, ex-developer) Visit our homepage |
|
|